home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH18.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-30  |  442 b   |  10 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.  char name[25];                /* The gets() function means get string */
  5.  puts("Enter your name: ");    /* A carriage return is made after each */
  6.  gets(name);                   /* entry. */
  7.  puts("Your name is: ");       /* The puts() function will only handle */
  8.  puts(name);                   /* one string at a time so the last two */
  9.  }                             /* entries can''t be combined */
  10.